﻿
﻿<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>我的博客</title>
    <style>
        body {font-family: Arial, sans-serif; background-color: #f9f9f9; margin: 0;}
        header {background: #333; color: #fff; padding: 20px; text-align: center;}
        main {max-width: 800px; margin: auto; padding: 20px;}
        article {background: #fff; padding: 15px; margin-bottom: 20px; border-radius: 5px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);}
        footer {text-align: center; background: #333; color: #fff; padding: 15px;}
        a {color: #3498db; text-decoration: none;}
        a:hover {text-decoration: underline;}
    </style>
</head>
<body>
    <header><h1>欢迎来到我的博客</h1></header>
    <main>
        <article>
            <h2><a href="#">博客文章标题一</a></h2>
            <p>发布日期: 2025年6月1日</p>
            <p>这是博客文章一的简要摘要，简单介绍文章的内容。</p>
        </article>
        <article>
            <h2><a href="#">博客文章标题二</a></h2>
            <p>发布日期: 2025年5月28日</p>
            <p>这是博客文章二的简要摘要，简单介绍文章的内容。</p>
        </article>
        <article>
            <h2><a href="#">博客文章标题三</a></h2>
            <p>发布日期: 2025年5月20日</p>
            <p>这是博客文章三的简要摘要，简单介绍文章的内容。</p>
        </article>
    </main>
    <footer>&copy; 2025 我的博客. All rights reserved.</footer>
</body>
</html>